EntityListEvent

sealed class EntityListEvent : Event(source)

This event is called when an entity is added to or removed from the world.

It is split into Add and Remove.

Inheritors

Types

Link copied to clipboard
class Add(val entity: Entity) : EntityListEvent

This is called when an entity is added to the world.

Link copied to clipboard
class Remove(val entity: Entity) : EntityListEvent

This is called when an entity is removed from the world.

Properties

Link copied to clipboard
val entity: Entity

The entity being added/removed.